home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1989 …il & Dave's Excellent CD / Excellent CD HFS.raw / Moof / Goodies / MPW Goodies / Interfaces / CIncludes / Strings.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-11-30  |  525 b   |  31 lines  |  [TEXT/MPS ]

  1. /************************************************************
  2.  
  3. Created: Tuesday, October 4, 1988 at 9:39 PM
  4.     Strings.h
  5.     C Interface to the Macintosh Libraries
  6.  
  7.  
  8.     Copyright Apple Computer, Inc.  1985-1988
  9.     All rights reserved
  10.  
  11. ************************************************************/
  12.  
  13.  
  14. #ifndef __STRINGS__
  15. #define __STRINGS__
  16.  
  17. #ifndef __TYPES__
  18. #include <Types.h>
  19. #endif
  20.  
  21. #ifdef __safe_link
  22. extern "C" {
  23. #endif
  24. char *p2cstr(StringPtr aStr); 
  25. StringPtr c2pstr(char *aStr); 
  26. #ifdef __safe_link
  27. }
  28. #endif
  29.  
  30. #endif
  31.